home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1997 December / Designer's Club 1997 December.iso / pc / IDEASRC / Snowfall.Dir / 00043_hidem.ls < prev    next >
Encoding:
Text File  |  1997-11-12  |  376 b   |  21 lines

  1. on mouseDown
  2.   puppetSound(1, "zap")
  3.   repeat while the mouseDown
  4.     set the visible of sprite the clickOn to 0
  5.     updateStage()
  6.   end repeat
  7.   set the visible of sprite the clickOn to 1
  8.   updateStage()
  9. end
  10.  
  11. on mouseUp me
  12.   if the clickOn = 6 then
  13.     sound stop 1
  14.     go(the frame + 1)
  15.   end if
  16.   if the clickOn = 5 then
  17.     sound stop 1
  18.     go(the frame - 1)
  19.   end if
  20. end
  21.